46be2993f9d21dbfcfb7661cd0d3a2382a6c6d23,ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/launchConfigurations/ContributedClasspathEntriesEntry.java,ContributedClasspathEntriesEntry,addSWTJars,#List#,174

Before Change


						catch (URISyntaxException e) {
							AntLaunching.log(e);
						}
						if (urlFileName.endsWith("!/")) { //$NON-NLS-1$
							urlFileName = urlFileName.substring(0, urlFileName.length() - 2);
						}
					}

After Change


						catch (URISyntaxException e) {
							AntLaunching.log(e);
						}
						if (urlFileName.endsWith("!/") || urlFileName.endsWith("!\\")) { //$NON-NLS-1$ //$NON-NLS-2$
							urlFileName = urlFileName.substring(0, urlFileName.length() - 2);
						}
						if (urlFileName.endsWith("!")) { //$NON-NLS-1$
							urlFileName = urlFileName.substring(0, urlFileName.length() - 1);
						}
					}